home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2000 #4
/
Amiga Plus CD - 2000 - No. 4.iso
/
Tools
/
Up2Date
/
InstallerNG
/
examples
/
stringformat.installer
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS
UTF-8
Wrap
Text File
|
1999-10-15
|
372 b
|
21 lines
(user expert)
(set @proceed-button "Really cool..."
@abort-button "This sucks !"
)
; demonstration of the string format function
(set text1 ("%s %s %s" ("Hello")
(" Wo%s" ("%sld " "r"))
"!"
)
)
(set text2 ("\n\nsome math: %ld * %ld = %ld" 30 40 (* 30 40)))
(exit ("%s%s" text1 text2) (quiet))
(welcome)